home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v9n05.arc / NEEDANSI.BAT < prev    next >
DOS Batch File  |  1990-02-13  |  394b  |  14 lines

  1. ECHO OFF
  2. ANSIHERE S
  3. IF ERRORLEVEL 1 GOTO GotANSI
  4. REM ANSI is not loaded
  5. ECHO   This program requires the DOS device driver ANSI.SYS.
  6. ECHO   To install ANSI, place the following line
  7. ECHO              DEVICE=[d:][path]ANSI.SYS
  8. ECHO   in your CONFIG.SYS file and reboot.
  9. GOTO END
  10. :GotANSI
  11. ECHO   ANSI.SYS is loaded so the commands to execute
  12. ECHO   your program would go here.
  13. :END
  14.